home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / www / amitrix / german3b.lha / docs / _stoptcpscript < prev    next >
Text File  |  1996-10-31  |  685b  |  21 lines

  1. ; Sample script to stop a TCP program that was started using the
  2. ; _starttcpscript script
  3. ;
  4. ; To use this script, configure AWeb to use for its Stop TCP program:
  5. ;    command = (path)/_stoptcpscript
  6. ;  arguments = (none)
  7.  
  8. ; The variable TCPPROCESS contains the CLI process that the TCP stack
  9. ; is running in.
  10.  
  11. Break $TCPPROCESS
  12.  
  13. ; Note:
  14. ; If your TCP stack supports ARexx, you could use it to stop your TCP
  15. ; program directly, instead of using this script.
  16. ; In that case you should configure AWeb to use the following as its
  17. ; Stop TCP program:
  18. ;    command = SYS:RexxC:rx
  19. ;  arguments = "ADDRESS (portname) QUIT"
  20. ; where (portname) is the actual ARexx port name of your TCP program.
  21.